net/netip.parseAddrError.at (field)

14 uses

	net/netip (current package)
		netip.go#L144: 	at  string // optionally, the unparsed portion of in at which the error occurred.
		netip.go#L149: 	if err.at != "" {
		netip.go#L150: 		return "ParseAddr(" + q(err.in) + "): " + err.msg + " (at " + q(err.at) + ")"
		netip.go#L174: 				return parseAddrError{in: in, msg: "IPv4 field must have at least one digit", at: s[i:]}
		netip.go#L185: 			return parseAddrError{in: in, msg: "unexpected character", at: s[i:]}
		netip.go#L256: 				return Addr{}, parseAddrError{in: in, msg: "each group must have 4 or less digits", at: s}
		netip.go#L260: 				return Addr{}, parseAddrError{in: in, msg: "IPv6 field has value >=2^16", at: s}
		netip.go#L265: 			return Addr{}, parseAddrError{in: in, msg: "each colon-separated field must have at least one digit", at: s}
		netip.go#L272: 				return Addr{}, parseAddrError{in: in, msg: "embedded IPv4 address must replace the final 2 fields of the address", at: s}
		netip.go#L276: 				return Addr{}, parseAddrError{in: in, msg: "too many hex fields to fit an embedded IPv4 at the end of the address", at: s}
		netip.go#L305: 			return Addr{}, parseAddrError{in: in, msg: "unexpected character, want colon", at: s}
		netip.go#L307: 			return Addr{}, parseAddrError{in: in, msg: "colon must be followed by more characters", at: s}
		netip.go#L314: 				return Addr{}, parseAddrError{in: in, msg: "multiple :: in address", at: s}
		netip.go#L326: 		return Addr{}, parseAddrError{in: in, msg: "trailing garbage after address", at: s}